High Memory Block - traduzione in italiano
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

High Memory Block - traduzione in italiano

65,520 BYTE MEMORY AREA, BEGINNING AT 1 MIB, ON X86 SYSTEMS OPERATING IN REAL MODE
High Memory Area; High memory (DOS); HMALDSYS
  • The high memory area is highlighted.

High Memory Block      
Tratto di alta memoria (i primi 64 k nella memoria estesa oltre 1 megabite utilizzati per l"estensione della memoria di base- nel computer con applicazioni DOS) HMB
high-rise building         
  • Flats in [[Ballymun, Dublin]], Ireland
  • EU funds]].
  • An apartment with a [[pergola]] and [[solar panel]]s in [[the Bronx]], [[New York City]]
  • [[Central Park Tower]] in [[Manhattan]], [[New York City]], the tallest residential high-rise tower in the world, December 2020
  • The three tower blocks of the Crossways Estate in [[Bow, London]], United Kingdom, before their refurbishment
  • New Brunswick]], [[New Jersey]], U.S., known as the ''Hub City''. High-rise towers often anchor [[central business district]]s.
  • High-rise buildings, [[Hong Kong]]
  • Painted [[panelák]]s in [[Prague, Czech Republic]]
  • Sliding ladder for firefighters in 1904
  • Osiedle Batorego in [[Warsaw]], Poland
  • "Street in the sky" at Park Hill
  • m}} high.
  • Housing commission towers in Waterloo, Sydney, Australia
  • A residential block in [[Steinfurt]], [[Westphalia]], Germany, forming a "Y"
  • Modern 25-story residential hi-rises, [[Krasnogorsk]], Russia
TALL BUILDING; AS OPPOSED TO A LOW-RISE BUILDING
High-rise; High-rise building; Apartment block; Apartment tower; Residential tower; Tower blocks; Blocks of flats; High rise; Towerblock; High-rise tower blocks; Midrise; Mid rise; High-rise apartment; High rise apartment; High rise flats; Deck access; High-rise buildings; Highrsie; Streets in the sky; High rise building; Tower Block; Highrise apartment; Highrise; High-rise apartment building; High-rise skyscraper; Residential high-rise
Grattacieli
high memory         
PART OF PHYSICAL MEMORY IN A COMPUTER
HighMem; High Memory
memoria superiore, area di circa 64 K oltre al primo megabite di memoria in una applicazione DOS (inform.)

Definizione

tower block
(tower blocks)
A tower block is a tall building divided into flats or offices. (BRIT; in AM, use high-rise building
, high-rise
)
...a 23-storey tower block.
N-COUNT

Wikipedia

High memory area

In DOS memory management, the high memory area (HMA) is the RAM area consisting of the first 65520 bytes above the one megabyte in an IBM AT or compatible computer.

In real mode, the segmentation architecture of the Intel 8086 and subsequent processors identifies memory locations with a 16-bit segment and a 16-bit offset, which is resolved into a physical address via (segment) × 16 + (offset). Although intended to address only 1 Megabyte (MB) (220 bytes) of memory, segment:offset addresses at FFFF:0010 and beyond reference memory beyond 1 MB (FFFF0 + 0010 = 100000). So, on an 80286 and subsequent processors, this mode can actually address the first 65520 bytes of extended memory as part of the 64 KB range starting 16 bytes before the 1 MB mark—FFFF:0000 (0xFFFF0) to FFFF:FFFF (0x10FFEF). The Intel 8086 and 8088 processors, with only 1 MB of memory and only 20 address lines, wrapped around at the 20th bit, so that address FFFF:0010 was equivalent to 0000:0000.

To allow running existing DOS programs which relied on this feature to access low memory on their newer IBM PC AT computers, IBM added special circuitry on the motherboard to simulate the wrapping around. This circuit was a simple logic gate which could disconnect the microprocessor's 21st addressing line, A20, from the rest of the motherboard. This gate could be controlled, initially through the keyboard controller, to allow running programs which wanted to access the entire RAM.

So-called A20 handlers could control the addressing mode dynamically, thereby allowing programs to load themselves into the 1024–1088 KB region and run in real mode.

Code suitable to be executed in the HMA must either be coded to be position-independent (using only relative references), be compiled to work at the specific addresses in the HMA (typically allowing only one or at most two pieces of code to share the HMA), or it must be designed to be paragraph boundary or even offset relocatable (with all addresses being fixed up during load).

Before code (or data) in the HMA can be addressed by the CPU, the corresponding driver must ensure that the HMA is mapped in. This requires that any such requests are tunneled through a stub remaining in memory outside the HMA, which would invoke the A20 handler in order to (temporarily) enable the A20 gate. If the driver does not exhibit any public data structures and only uses interrupts or calls already controlled by the underlying operating system, it might be possible to register the driver with the system in a way so that the system will take care of A20 itself thereby eliminating the need for a separate stub.

The first user of the HMA among Microsoft products was Windows/286 2.1 in 1988, which introduced the HIMEM.SYS device driver. Starting in 1990 with Digital Research's DR DOS 5.0 (via HIDOS.SYS /BDOS=FFFF and CONFIG.SYS HIDOS=ON) and since 1991 with MS-DOS 5.0 (via DOS=HIGH), parts of the operating system's BIOS and kernel could be loaded into the HMA as well, freeing up to 46 KB of conventional memory. Other components, such as device drivers and terminate-and-stay-resident programs (TSRs), could at least be loaded into the upper memory area (UMA), but not into the HMA. Under DOS 5.0 and higher, with DOS=HIGH, the system additionally attempted to move the disk buffers into the HMA. Under DR DOS 6.0 (1991) and higher, the disk buffers (via HIBUFFERS, and later also BUFFERSHIGH), parts of the command processor COMMAND.COM as well as several special self-relocating drivers like KEYB, NLSFUNC and SHARE could load into the HMA as well (using their /MH option), thereby freeing up even more conventional memory and upper memory for conventional DOS software to work with. TASKMAX seems to have relocated parts of itself into the HMA as well. Novell's NLCACHE from NetWare Lite and early versions of NWCACHE from Personal NetWare and Novell DOS 7 could utilize the HMA as well. Under MS-DOS/PC DOS, a ca. 2 KB shared portion of COMMAND.COM can be relocated into the HMA, as well as DISPLAY.SYS bitmaps for prepared codepages. Under MS-DOS 6.2 (1993) and higher, a ca. 5 KB portion of DBLSPACE.BIN/DRVSPACE.BIN can coexist with DOS in the HMA (unless DBLSPACE/DRVSPACE /NOHMA is invoked). Under PC DOS 7.0 (1995) and 2000, DOSKEY loads into the HMA (if available), and SHARE can be loaded into the HMA as well (unless its /NOHMA option is given). Under MS-DOS 7.0 (1995) to 8.0 (2000), parts of the HMA are also used as a scratchpad to hold a growing data structure recording various properties of the loaded real-mode drivers.